SetRequestInterceptionRequest

data class SetRequestInterceptionRequest(patterns: List<RequestPattern>)

Represents request frame that can be used with Network#setRequestInterception operation call.

Sets the requests to intercept that match the provided patterns and optionally resource types. Deprecated, please use Fetch.enable instead.

See also

Constructors

SetRequestInterceptionRequest
Link copied to clipboard
fun SetRequestInterceptionRequest(patterns: List<RequestPattern>)

Properties

patterns
Link copied to clipboard
val patterns: List<RequestPattern>
Requests matching any of these patterns will be forwarded and wait for the corresponding continueInterceptedRequest call.

Sources

jvm source
Link copied to clipboard